home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / borland / jnfb88.zip / PALPRO.ZIP / SALUTE.SC < prev   
Text File  |  1987-10-07  |  165b  |  12 lines

  1. CREATELIB "salute"
  2. PROC hello() 
  3.         ? "Hello, world!" 
  4.         SLEEP 5000 
  5. ENDPROC 
  6.  
  7. WRITELIB "salute" hello 
  8.  
  9. READLIB "salute" hello 
  10.  
  11. hello() 
  12.